/-app
/-app/files
FileEntry.ts
FileList.ts
FolderEntry.ts
functions.ts
/-app/layout
/-app/tests
Application.ts
PageLayout.ts
functions.ts
/-boot
/-docs
/-features
/-imports
/-koBindings
/-storage
/-tests
/-tests/files
FileList.ts
/-tests/storage
_sampleTests.ts
/-typings
base.css
readme.md
stringUtils.ts
teapo.html
try.js
1
<!doctype html>
2
<html>
3
<head>
4
<title>Teapo v0.5j</title>
5
 
6
<style>###base.css###</style>
7
<style>###boot/boot.css###</style> 
8
<style>###app/layout/TestPage.css###</style> 
9
 
10
</head>
11
  
12
  
13
  
14
  
15
  
16
  
17
 
18
<body>
19
  
20
  
21
 
22
<script>###boot/early-0.js###</script>
23
<script>###imports/shims/es5-shim.min.js###</script>
24
<script>###imports/shims/es5-sham.min.js###</script>
25
<script>###imports/knockout/knockout-3.0.0.js###</script>
26
<script>###boot/early-1-with-knockout.js###</script>
27
 
28
<!-- Knockout.js templates --->
29
<script id=Application type="text/html">###app/layout/Application.html###</script>
30
<script id=TestPage type="text/html">###app/layout/TestPage.html###</script>
31
<script id=TestCase type="text/html">###app/layout/TestCase.html###</script>
32
 
33
<script>
34
 
35
(function(teapo) {
36
 
37
try {
38
###app/Application.ts:build###
39
 
40
try {
41
 
42
  var app = new teapo.app.Application();
43
}
44
catch (initError) {
45
  alert('Error in Teapo initialization: '+initError.message+' '+initError.stack);
46
}
47
 
48
}
49
catch (declarationError) {
50
  alert('Error in Teapo declaration: '+declarationError.message+' '+declarationError.stack);
51
}
52
 
53
 
54
})(teapo);
55
</script>
56
 
57
</body>
58
</html>